home *** CD-ROM | disk | FTP | other *** search
/ The 640 MEG Shareware Studio 2 / The 640 Meg Shareware Studio CD-ROM Volume II (Data Express)(1993).ISO / comm / boca14.zip / BOCA.ASP next >
Text File  |  1992-05-12  |  4KB  |  91 lines

  1. PROC MAIN
  2. ;*************************************************************************
  3. ;* BOCA.ASP SETUP FILE                                                   *
  4. ;*                                                                       *
  5. ;* An ASPECT script file for initializing the BOCA 14.400                *
  6. ;* modem for proper use with PROCOMM PLUS.                               *
  7. ;*                                                                       *
  8. ;*************************************************************************
  9.  
  10. CLEAR
  11. CUROFF
  12. BOX 0 0 9 58 14
  13. ATSAY 2 2 14 "PROCOMM PLUS is designed to work efficiently with the"
  14. ATSAY 3 2 14 "BOCA 14.4k modem in all its operational modes, but the"
  15. ATSAY 4 2 14 "initial setup differs from the setup for ordinary non-"
  16. ATSAY 5 2 14 "error-correcting modems."
  17. ATSAY 7 2 14 "        <press ENTER repeatedly to continue>"
  18. WAIT1:
  19. IF NOT HITKEY
  20.    GOTO WAIT1
  21. ENDIF
  22. CLEAR
  23. BOX 0 0 17 59 14
  24. ATSAY 2 2 14 "The basic principle is that the computer-to-modem baud-"
  25. ATSAY 3 2 14 "rate is fixed at 57600 (thus your status line will"
  26. ATSAY 4 2 14 "*always* read 57600) and the modem itself adjusts to"
  27. ATSAY 5 2 14 "the actual speed of the connection."
  28. ATSAY 7 2 14 "This ASPECT file sends to the modem all the commands"
  29. ATSAY 8 2 14 "necessary for efficient automatic use of its error-"
  30. ATSAY 9 2 14 "correcting features. You only need to run it one time,"
  31. ATSAY 10 2 14 "since it tells the modem to write these settings to"
  32. ATSAY 11 2 14 "non-volatile RAM. It is also very important to follow"
  33. ATSAY 12 2 14 "*exactly* the instructions that appear on the screen"
  34. ATSAY 13 2 14 "as you run this file."
  35. ATSAY 15 2 14 "                 <press ENTER to continue>"
  36. WAIT2:
  37. IF NOT HITKEY
  38.    GOTO WAIT2
  39. ENDIF
  40. CLEAR
  41. SET TXPACE 100
  42. SOUND 440 50
  43. BOX 0 0 4 56 14
  44. ATSAY 2 2 14 "BOCA 14.4k modem initialization... WORKING..."
  45. SET PARITY NONE
  46. SET DATABITS 8
  47. SET STOPBITS 1
  48. SET BAUD 57600
  49. CURON
  50. LOCATE 5 0
  51. TRANSMIT "AT&F^M"                  ; Get factory defaults
  52. PAUSE 1
  53. TRANSMIT "ATE1^M"                  ; Echo Commands
  54. PAUSE 1
  55. TRANSMIT "ATL1^M"                  ; Low Speaker Volume
  56. PAUSE 1
  57. TRANSMIT "ATS0=0^M"                ; auto answer off
  58. PAUSE 1
  59. TRANSMIT "ATX4^M"                  ; Response set and calling characteristics
  60. PAUSE 1
  61. TRANSMIT "AT&C1^M"                 ; Data Carrier Detect (data sensitive)
  62. PAUSE 1
  63. TRANSMIT "AT&D2^M"                 ; DTR processing
  64. PAUSE 1
  65. TRANSMIT "ATS7=60^M"               ; wait 60 seconds for CD
  66. PAUSE 1
  67. TRANSMIT "AT&S1^M"                 ; DSR to CCITT
  68. PAUSE 1
  69. TRANSMIT "ATS95=46^M"              ; Control Selection of Compression
  70. SET TXPACE 0
  71. CLEAR
  72. CUROFF
  73. SOUND 440 50
  74. BOX 0 0 17 60 14
  75. ATSAY 2 2 14 "BOCA 14.4k modem initialization - COMPLETED!"
  76. ATSAY 4 2 14 "Your modem will now power up with the proper"
  77. ATSAY 5 2 14 "defaults for PROCOMM PLUS.  You should now use the"
  78. ATSAY 6 2 14 "Setup Facility (Alt-S) MODEM OPTIONS to make your"
  79. ATSAY 7 2 14 "INITIALIZATION COMMAND `"ATZ^M`" (without the quotes)."
  80. ATSAY 8 2 14 "Also set AUTOBAUD DETECT to OFF in both MODEM & HOST MODE"
  81. ATSAY 9 2 14 "OPTIONS.  In TERMINAL OPTIONS Hardware Flow Control"
  82. ATSAY 10 2 14 "(RTS/CTS) should be turned ON. All dialing directory"
  83. ATSAY 11 2 14 "entries should be should be set to 57600 baud, as well"
  84. ATSAY 12 2 14 "as your Alt-P line setting. Make sure to save your"
  85. ATSAY 13 2 14 "changes. One last thing: your CONNECT MESSAGES in MODEM"
  86. ATSAY 14 2 14 "OPTIONS should all read simply `"CONNECT`" (without"
  87. ATSAY 15 2 14 "quotes). Now type: AT&W to save these changes."
  88. CURON
  89. LOCATE 18 0
  90. ENDPROC
  91.